home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 7 / Night Owl Shareware (NOPV7)(Night Owl Publisher Inc.)(1992).bin / 038a / bash1_12.arj / BASH1-12.TAR / bash-1.12 / builtins / builtin.def < prev    next >
Text File  |  1991-11-04  |  2KB  |  67 lines

  1. This file is builtin.def, from which is created builtin.c.
  2. It implements the builtin "builtin" in Bash.
  3.  
  4. Copyright (C) 1987, 1989, 1991 Free Software Foundation, Inc.
  5.  
  6. This file is part of GNU Bash, the Bourne Again SHell.
  7.  
  8. Bash is free software; you can redistribute it and/or modify it under
  9. the terms of the GNU General Public License as published by the Free
  10. Software Foundation; either version 1, or (at your option) any later
  11. version.
  12.  
  13. Bash is distributed in the hope that it will be useful, but WITHOUT ANY
  14. WARRANTY; without even the implied warranty of MERCHANTABILITY or
  15. FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  16. for more details.
  17.  
  18. You should have received a copy of the GNU General Public License along
  19. with Bash; see the file COPYING.  If not, write to the Free Software
  20. Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22. $PRODUCES builtin.c
  23.  
  24. $BUILTIN builtin
  25. $FUNCTION builtin_builtin
  26. $SHORT_DOC builtin [shell-builtin [arg ...]]
  27. Run a shell builtin.  This is useful when you wish to rename a
  28. shell builtin to be a function, but need the functionality of the
  29. builtin within the function itself.
  30. $END
  31.  
  32. #include "../shell.h"
  33. extern char *this_command_name;
  34.  
  35. /* Run the command mentioned in list directly, without going through the
  36.    normal alias/function/builtin/filename lookup process. */
  37. builtin_builtin (list)
  38.      WORD_LIST *list;
  39. {
  40.   extern Function *find_shell_builtin (), *builtin_address ();
  41.   Function *function;
  42.   register char *command;
  43.  
  44.   if (!list)
  45.     return (EXECUTION_SUCCESS);
  46.  
  47.   command = (list->word->word);
  48. #if defined (DISABLED_BUILTINS)
  49.   function = builtin_address (command);
  50. #else /* !DISABLED_BUILTINS */
  51.   function = find_shell_builtin (command);
  52. #endif /* !DISABLED_BUILTINS */
  53.  
  54.   if (!function)
  55.     {
  56.       builtin_error ("%s: Not a shell builtin!", command);
  57.       return (EXECUTION_FAILURE);
  58.     }
  59.   else
  60.     {
  61.       this_command_name = command;
  62.       list = list->next;
  63.       return ((*function) (list));
  64.     }
  65. }
  66.  
  67.